home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / pcl4w13.zip / SELFTEST._B_ < prev    next >
Text File  |  1996-07-10  |  1KB  |  39 lines

  1. #
  2. # Borland makefile for SELFTEST
  3. #
  4. # To use: "maker -fselftest._B_"
  5. # Note: Use "maker", not "make"
  6. #
  7. # Note: Replace the reference "D:\COMPILER\BC45\INCLUDE" below
  8. #       with your compilers INCLUDE path.
  9. #
  10.  
  11. C_FLAGS = -c -2
  12. L_FLAGS = -c -n -Tw
  13.  
  14. selftest.exe: selftest.res selftest.obj selftest.def pcl4w.lib \
  15.             about.obj line.obj paint.obj sioerror.obj runtest.obj
  16.     tlink -c -n -Tw  c0ws @selftest.rsp ,selftest,selftest,pcl4w mathws cws import,selftest,selftest
  17.     rlink selftest.res selftest.exe
  18.  
  19. selftest.res: selftest.rc
  20.     brcc -iD:\COMPILER\BC45\INCLUDE selftest.rc
  21.  
  22. about.obj: about.c about.h
  23.    bcc $(C_FLAGS)  about.c
  24.  
  25. runtest.obj: runtest.c runtest.h
  26.    bcc $(C_FLAGS)  runtest.c
  27.  
  28. selftest.obj: selftest.c selftest.h pcl4w.h
  29.    bcc $(C_FLAGS)  selftest.c
  30.  
  31. sioerror.obj: sioerror.c sioerror.h pcl4w.h
  32.    bcc $(C_FLAGS)  sioerror.c
  33.  
  34. paint.obj: paint.c paint.h pcl4w.h
  35.     bcc $(C_FLAGS)  paint.c
  36.  
  37. line.obj: line.c line.h pcl4w.h
  38.     bcc $(C_FLAGS)  line.c
  39.